engine: 29.7.0 - #25662
Conversation
The second grep exits after finding the next release heading, which can close the pipe while the first grep is still writing. With pipefail, that SIGPIPE is reported as if the requested release notes were missing. Read the release file directly with awk and stop at the next level-two heading so early termination cannot fail an upstream process. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🟡 NEEDS ATTENTION
One typo found in the 29.7.0 release notes. The shell script change in hack/moby-sync-release.sh looks correct. The hugo.yaml update is clean.
|
|
||
| - Add the `default-stop-timeout` daemon option to configure the stop timeout assigned to containers without an explicit timeout. [moby/moby#53146](https://github.com/moby/moby/pull/53146) | ||
| - containerd image store: Fix daemon-wide concurrent download and upload limits for pulls and pushes not being honored. [moby/moby#53081](https://github.com/moby/moby/pull/53081) | ||
| - To preserve the previous unlimited startup behavior, configure "max-concurrent-downloads" and ""max-concurrent-uploads" to 0 |
There was a problem hiding this comment.
[MEDIUM] Doubled double-quote typo in daemon option name ""max-concurrent-uploads"
The line reads:
configure "max-concurrent-downloads" and ""max-concurrent-uploads" to 0
The option ""max-concurrent-uploads" has an extra leading double-quote. It should be "max-concurrent-uploads" to match the formatting of the first option. Users copying this literally would pass a malformed option name to the daemon configuration.
Suggested fix:
configure "max-concurrent-downloads" and "max-concurrent-uploads" to 0
docker-agent
left a comment
There was a problem hiding this comment.
Assessment: 🟡 NEEDS ATTENTION
Release notes for Docker Engine 29.7.0-rc.1. Found one confirmed typo and a heading/milestone consistency issue to address.
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
Description
Related issues or tickets
Reviews